home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ASME's Mechanical Engine…ing Toolkit 1997 December
/
ASME's Mechanical Engineering Toolkit 1997 December.iso
/
c_lang
/
varinc.lzh
/
TPUT.C
< prev
Wrap
Text File
|
1979-11-30
|
569b
|
17 lines
/* SOURCE FILE: TPUT.C */
/*****************************************************************************/
/* tput() displays a string at a specified row and column. */
/*****************************************************************************/
#include <stdio.h>
#include <stddefs.h>
void tput(row, col, text)
short row, col; /* cursor location */
char text[]; /* text to display */
{
CUR_MV(row, col);
fputs(text, stderr);
}